-
Re: Is it possible to pull the first initial from first name and last name from a contact list column?
Try this formula =LEFT([Employee Name]@row, 1) + RIGHT([Employee Name]@row, LEN([Employee Name]@row) - FIND(" ", [Employee Name]@row) + 1)1 · -
Re: Document Builder - custom name for each file?
@Patrick Jones I use the same method Kimani suggests This is where you map it3 · -
Re: Rolling 90 Day Formula
Try =IF(ISDATE(Start@row), IF(Start@row <= TODAY(90), IF(Start@row < TODAY(), 0, 1), 0))1 · -
Re: Using data filter in Data Shuttle
Best I can do is give you an example of one I use. This only uploads part numbers that begin with 3, 4, or 5 and the part is not obsolete.1 · -
Re: Index Collect Max | Get the most recent item based on Created Date
Add a helper checkbox column with this =IF([Created Date]@row = MAX(COLLECT([Created Date]:[Created Date], Auditor:Auditor, Auditor@row)), 1, 0) Then use this to get the lastest note =INDEX(COLLECT([…1 ·